home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / WHO_S32._B_ < prev    next >
Text File  |  1997-07-26  |  762b  |  28 lines

  1. #
  2. # Borland makefile for WHO_S [Win32]
  3. # Requires WIL32.DLL & WIL32.LIB
  4. #
  5. # To use: "make -fwho_s32._B_"
  6. #
  7.  
  8. CCFLAGS = -c -DWIN32
  9.  
  10. who_s.exe: who_s.res who_s.obj who_s.def wil32.lib \
  11.             about.obj str.obj paint.obj
  12.     tlink32 -Tpe -ax c0w32 @who_s.rsp ,who_s,who_s, wil32.lib cw32 import32,who_s,who_s
  13.  
  14. who_s.res: who_s.rc
  15.     brcc32 -dWIN32 who_s.rc
  16.  
  17. about.obj: about.c about.h
  18.    bcc32 $(CCFLAGS)  about.c
  19.  
  20. paint.obj: paint.c paint.h
  21.    bcc32 $(CCFLAGS)  paint.c
  22.  
  23. who_s.obj: who_s.c wil.h
  24.    bcc32 $(CCFLAGS)  who_s.c
  25.  
  26. str.obj: str.c str.h wil.h
  27.    bcc32 $(CCFLAGS)  str.c
  28.